/*
Nghia Tran
February 16, 2025
style.css
*/
body, header, nav, main, footer, img, h1 {
    
margin: 0;

padding: 0;

border: 0;
}
/* Header styles */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Nav styles */
nav {
    list-style-type: none; /* Removes bullet markers */
    background-color: #444;
    padding: 10px;
}

/* Link styles */
nav a {
    text-decoration: none; /* Removes underline from links */
    color: blue;
    font-family: Arial, sans-serif; /* Font family with fallback */
}

/* Class selector */
.round {
    color: blue;
    font-weight: bold;
}

/* ID selector */
#welcome {
    max-width: 800px;
    margin: auto;
}

/* High contrast for readability */
main {
    background-color: white;
    color: black;
    padding: 15px;
}

/* Footer styles */
footer {
    background-color: #222;
    color: blue;
    text-align: center;
    padding: 10px;
}

img {
    width:100%;
    display:block;
}